Skip to content
This repository has been archived by the owner on Sep 1, 2020. It is now read-only.

Latest commit

 

History

History
16 lines (13 loc) · 883 Bytes

10.1 - Process/Pool::__construct.md

File metadata and controls

16 lines (13 loc) · 883 Bytes

Process\Pool::__construct

创建进程池。函数原型:

function Process\Pool::__construct(int $worker_num, int $ipc_type = 0, int $msgqueue_key = 0);

参数

  • $worker_num:指定工作进程的数量
  • $ipc_type 进程间通信的模式,默认为0表示不使用任何进程间通信特性
    • 设置为0时必须设置onWorkerStart回调,并且必须在onWorkerStart中实现循环逻辑,当onWorkerStart函数退出时工作进程会立即退出
    • 设置为SWOOLE_IPC_MSGQUEUE表示使用系统消息队列通信,可设置$msgqueue_key指定消息队列的KEY,未设置消息队列KEY,将申请私有队列
    • 设置为SWOOLE_IPC_SOCKET表示使用Socket进行通信,需要使用listen方法指定监听的地址和端口
    • 使用非0设置时,必须设置onMessage回调,onWorkerStart变更为可选